/*
* This file is part of the LIBCGI library
*
* Copyright 1994 by Enterprise Integration Technologies Corporation
*
* This is freeware with commercialization rights reserved; see the
* LICENSE included in the distribution for specifics.
*/
void print_doc_begin(title)
char *title;
{
printf("%s\n", title);
printf("%s
\n
", title);
}
void print_doc_end(text)
char *text;
{
char *w, *getenv();
puts("
");
if (text && *text) puts(text);
else if (w = getenv("WEBMASTER")) printf("%s\n", w);
}
void print_logo()
{
printf("
");
}